const math.shift
28 uses
math (current package)
bits.go#L13: shift = 64 - 11 - 1
bits.go#L16: fracMask = 1<<shift - 1
floor.go#L90: e := uint(bits>>shift) & mask
floor.go#L97: } else if e < bias+shift {
floor.go#L102: const half = 1 << (shift - 1)
floor.go#L128: e := uint(bits>>shift) & mask
floor.go#L134: const halfMinusULP = (1 << (shift - 1)) - 1
floor.go#L136: bits += (halfMinusULP + (bits>>(shift-e))&1) >> e
frexp.go#L33: exp += int((x>>shift)&mask) - bias + 1
frexp.go#L34: x &^= mask << shift
frexp.go#L35: x |= (-1 + bias) << shift
ldexp.go#L32: exp += int(x>>shift)&mask - bias
ldexp.go#L47: x &^= mask << shift
ldexp.go#L48: x |= uint64(exp+bias) << shift
logb.go#L49: return int((Float64bits(x)>>shift)&mask) - bias + exp
modf.go#L33: e := uint(x>>shift)&mask - bias
sqrt.go#L114: exp := int((ix >> shift) & mask)
sqrt.go#L116: for ix&(1<<shift) == 0 {
sqrt.go#L123: ix &^= mask << shift
sqrt.go#L124: ix |= 1 << shift
sqrt.go#L132: r := uint64(1 << (shift + 1)) // r = moving bit from MSB to LSB
sqrt.go#L147: ix = q>>1 + uint64(exp-1+bias)<<shift // significand + biased exponent
trig_reduce.go#L37: exp := int(ix>>shift&mask) - bias - shift
trig_reduce.go#L38: ix &^= mask << shift
trig_reduce.go#L39: ix |= 1 << shift
trig_reduce.go#L61: hi >>= 64 - shift
trig_reduce.go#L63: hi |= e << shift
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)